body {
    background-image: url("img/Paris Shirt (crop).png");
    background-size: auto 410px;
    background-repeat: no-repeat;
    background-position: 75vw 1em;
}

#random-images {
    text-align: center;
}

#random-images img {
    width: auto;
    height: 300px;

    margin: 20px;
    border: 4px double black;
}


/* For cell phones */
@media (max-width: 700px) {

    #random-images img {
        width: 40%;
        height: auto;
    
        margin: 5%;
        border: 4px double black;
        box-sizing: border-box;
    }

}

@media (max-width: 1024px) {

    body {
        background-size: auto 40vw;
    }

}